home *** CD-ROM | disk | FTP | other *** search
- /* Example02.Plot - Demonstrates multiple windows */
- /* Modified for RexxPlPlot by Glenn M. Lewis - 9/12/89 */
-
- address 'PlPlot'
- say 'Please be patient...'
-
- /* Divide screen into 16 regions */
-
- 'plstar(4,4);'
- 'plschr(0.0,3.5);'
- 'plfont(4);'
-
- do i=0 to 15
- 'pladv(0);'
- vmin = 0.1
- vmax = 0.9
- do j=0 to 2
- 'plvpor(vmin,vmax,vmin,vmax);'
- 'plwind(0.0,1.0,0.0,1.0);'
- 'plbox("bc",0.0,0,"bc",0.0,0);'
- vmin = vmin + 0.1
- vmax = vmax - 0.1
- end j
- 'plptex(0.5,0.5,1.0,0.0,0.5,i);'
- end i
-
- 'plend();'
-
- exit 0
-
-